home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ccdl150l.zip / IO / REWIND.C < prev    next >
C/C++ Source or Header  |  1996-06-15  |  82b  |  6 lines

  1. #include <stdio.h>
  2.  
  3. void rewind(FILE *stream)
  4. {
  5.     fseek(stream,0L,SEEK_SET);
  6. }